home *** CD-ROM | disk | FTP | other *** search
/ Aminet 41 / Aminet 41 (2001)(Schatztruhe)[!][Feb 2001].iso / Aminet / gfx / edit / DiamondBOX.lha / DiamondBOX / developer / BitmapLoader.h < prev    next >
C/C++ Source or Header  |  1999-07-26  |  663b  |  36 lines

  1. /*
  2. ** BitmapLoader.h  -  13. juli 1998  -  Nikolaj Thygesen
  3. ** -----------------------------------------------------
  4. */
  5.  
  6. #ifndef BITMAPLOADER_H
  7. #define BITMAPLOADER_H
  8.  
  9. extern unsigned long ASM IdentifyLoader(
  10.   A0 char *
  11. );
  12. extern struct PebbleHandle * ASM OpenLoader(
  13.   A0 char *,
  14.   A1 unsigned *,
  15.   A2 unsigned *,
  16.   D0 struct Library *
  17. );
  18. extern enum RCode ASM LoaderScanline(
  19.   A0 struct PebbleHandle *,
  20.   A1 PixelARGB *,
  21.   A2 unsigned *
  22. );
  23. extern void ASM AbortLoader(
  24.   A0 struct PebbleHandle *
  25. );
  26. extern void ASM CloseLoader(
  27.   A0 struct PebbleHandle *
  28. );
  29.  
  30. #ifdef DIAMONDBOX_MAINPROGRAM
  31. #include "proto/BitmapLoader.pragma"
  32. #endif
  33. #endif
  34.  
  35. /* End Of File.*/
  36.